Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632714 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar

font/ cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar/assets/
    1 Items
  • calendar.png
  • dycalendar.js cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar/dycalendar.js
    166 Views
    0 Comments
    /*!
    * dyCalendar is a JavaScript library for creating Calendar.
    *
    * Author: Yusuf Shakeel
    * https://github.com/yusufshakeel
    *
    * GitHub Link: https://github.com/yusufshakeel/dyCalendarJS
    *
    main.js cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar/main.js
    163 Views
    0 Comments
    dycalendar.draw({
    target: '#dycalendar',
    type: 'month',
    dayformat : 'full',
    monthformat: 'full',
    highlighttargetdate: false,
    highlighttoday:true,
    prevnextbutton: 'show',
    dycalendar.css cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar/dycalendar.css
    104 Views
    0 Comments
    .dycalendar-container {
    display: inline-block;
    border : 1px solid #eee;
    }

    .dycalendar-container.round-edge {
    border-radius: 5%;
    -o-border-radius: 5%;
    style.css cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar/style.css
    104 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "sans";
    user-select: none;
    }

    index.html cody/swapnilsparsh/30DaysOfJavaScript/06 - Calendar/index.html
    296 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="dycalendar.css">